home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-01-02 | 503 b | 23 lines | [TEXT/????] |
- //
- // DEBUG.H
- //
- // Copyright (C) Microsoft Corporation, 1996
- //
-
- #ifdef __cplusplus
- extern "C" {
- #endif
- void DebugPrintf(char * lpFormatString, ...);
- void * DebugCoTaskMemAlloc(unsigned long cb);
- void * DebugCoTaskMemRealloc(void * pv, unsigned long cb);
- void DebugCoTaskMemFree(void * pv);
- #ifdef __cplusplus
- }
- #endif
-
- #ifdef CHECKMEMORYLEAKS
- #define CoTaskMemAlloc DebugCoTaskMemAlloc
- #define CoTaskMemRealloc DebugCoTaskMemRealloc
- #define CoTaskMemFree DebugCoTaskMemFree
- #endif
-